Skip to content

Instantly share code, notes, and snippets.

@n-ce
n-ce / YTM_Clients_FOSS_Android.md
Last active September 20, 2026 08:03
YouTube Music clients on Android
@GerHobbelt
GerHobbelt / emoji-list.md
Last active September 20, 2026 08:03 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

A list of GitHub emoji markup, adapted from rxavier's Complete list of github markdown emoji markup, generated with a Grunt script for maintainability (see repository).

Additional original source material: http://unicode.org/emoji/charts/full-emoji-list.html

This table is available as a gist at https://gist.github.com/GerHobbelt/b9b87a2257ddd5251a45628d61385717 and as part of the build repo at https://github.com/GerHobbelt/emoji-list/blob/master/dist/emoji-list.md

Table of Contents

@drillan
drillan / jev-finance-projects.md
Created September 20, 2026 02:27
Jev (TypeSafe System One) finance & trading projects β€” surveyed 2026-09-20

Jev (TypeSafe System One) β€” Finance & Trading Projects

Projects using Jev, TypeSafe AI's System One decision model (released 2026-09-15), in investment, trading, and financial-data contexts. Surveyed 2026-09-20 via GitHub API and community awesome-lists.

Reference project

  • jarrodwatts/jev-trader (β˜…1.3k, 2026-09-16) β€” One AI trade decision every Monad block (~300 ms). Jev reads the Kuru MON-USDC order book and answers buy or sell; the bot posts a post-only limit order one tick inside the touch, earning the spread. Bun/TypeScript, dry-run mode, SSE dashboard. The template most projects below derive from.

Live trading / trading systems

@DomeniLocke
DomeniLocke / readme.md
Created July 15, 2026 11:34
Best Instant Indexing Tools Compared for Cost, Speed and Performance

Best Instant Indexing Tools Compared by Speed, Price & Real Results (2026)

Choosing the best instant indexing tool is not only about speed. Many tools claim to get pages discovered quickly, but website owners need to compare them based on actual usefulness, pricing, workflow, reliability, and SEO value.

In 2026, instant indexing tools are widely used by bloggers, agencies, affiliate marketers, publishers, and eCommerce websites that want faster URL discovery.

Best Instant Indexing Tools You Should Go For

  1. Rocket Indexer – https://snipr.is/Cq8vwDP πŸ‘ˆπŸ» Click Here
  2. 2minuteindex.com – πŸ‘ˆπŸ» Click Here
@poita66
poita66 / jmstudio-gist.md
Last active September 20, 2026 08:02
Running Creality 3D Scanners (JM Studio) on Linux with Wine

Running Creality CR-Scan Lizard (JM Studio) on Linux with Wine

The Creality CR-Scan Lizard 3D scanner uses JM Studio software, provided by 3DMakerPro. Creality also shipped their own rebrand called CR Studio, but it is no longer maintained. JM Studio remains actively developed and supports the Lizard series. Tested with the Lizard ICT 100W model.

Other Creality scanners (Raptor, Ferret, etc.) use Creality Scan, which is different software and is not covered here.

@rxaviers
rxaviers / gist:7360908
Last active September 20, 2026 08:03
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: πŸ˜„ :smile: πŸ˜† :laughing:
😊 :blush: πŸ˜ƒ :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
πŸ˜† :satisfied: 😁 :grin: πŸ˜‰ :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: πŸ˜€ :grinning:
πŸ˜— :kissing: πŸ˜™ :kissing_smiling_eyes: πŸ˜› :stuck_out_tongue:
@WitherOrNot
WitherOrNot / tmogged.cmd
Last active September 20, 2026 07:56
i'm sorry dave
<# :
:: I wonder who made Task Manager...
@setlocal DisableDelayedExpansion
@echo off
echo "%*" | find /i "-el" >nul && set _elev=1
set _PSarg="""%~f0""" -el
@eryshkov
eryshkov / docker-desktop-macos-privileged-helpers.md
Created September 16, 2026 09:45
Docker Desktop macOS: fix repeated privileged access password prompt

Docker Desktop on macOS: fix repeated password prompt

When Docker Desktop asks for your password on every launch or reboot:

Docker Desktop requires privileged access to apply configuration

the privileged helpers under /Library/PrivilegedHelperTools/ are usually out of date compared to /Applications/Docker.app.

A plain install vmnetd often fails silently because the old daemon is still running and locking the binary. Unload it, replace the files, then reinstall.

@dianjuar
dianjuar / i3-shortcuts-screenshot.md
Last active September 20, 2026 07:47
My i3 shortcuts to take screenshots

Requirements

  • maim
  • xclip

Set-up

Set this on your i3 config file ~/.i3/config

# Screenshots
@cablehead
cablehead / jev-2048.md
Last active September 20, 2026 07:42
kicking the tires on jev with 2048

kicking the tires on jev with 2048

I finally got a chance to kick the tires on jev (jev-1.13.0). I thought it'd do really well playing 2048.

the strategy I used was: hand it the current board state and give it the option of up, down, left, right. I tried that 4 ways (the jev rows in the table).. each row links to the request I sent.

with just the board it does about as well as making random moves. it does best when code works out what each move would do to the board and jev picks from those.. then it's about as good as a fixed rule (e.g. always left if that moves anything, else down, else right, else up).

I didn't have long to spend on it, so I'm likely missing something.